@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+US+Modern:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Niconne&family=Playwrite+US+Modern:wght@100..400&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* NAVBAR */
.navbar{
    background-color:#0b2a5b;
}
.toggle-heading{
    color: white;
}
.nav-link.nav-button{
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin: 3px;
}
.nav-link.nav-button:hover{
    text-decoration: underline;
}
.nav-link.nav-button.active{
    color: goldenrod;
    text-decoration: underline;

}
.nav-link.nav-button-2{
    color: white;
    font-weight: 500;
    border: 3px solid goldenrod;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    background-color: goldenrod;
}
.nav-link.nav-button-2:hover{
    color: goldenrod;
    border: 3px solid goldenrod;
    background-color: white;
}
.navbar-logo{
    color: white;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
}
.brand span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f5c46b;
}



.logo {
  width: 220px;
  max-width: 80%;
  margin-bottom: 20px;
}


.hero-content p {
  font-size: 18px;
  color: goldenrod;
  letter-spacing: 2px;
}
.offcanvas-body{
    color: #0b2a5b;
}
.offcanvas-toggle{
    background-color: #0b2a5b;
}
.offcanvas.show .nav-link{
    color: goldenrod;
}
.offcanvas.show .offcanvas-title {
  color:goldenrod;
}
/* FOOTER */
.site-footer {
  background-color: #ffffff;     /* white background */
  color: #0b2a5b;                /* professional blue */
  padding: 10px 0;               /* top & bottom padding */
  margin-top: 80px;              /* space from body content */
  border-top: 1px solid #e5e5e5; /* subtle separator */
}

.site-footer small {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}
.navbar-toggler-icon{
  filter: invert(72%) sepia(50%) saturate(600%) hue-rotate(5deg);
}
.offcanvas.show .nav-link{
    color: #0b2a5b;
}
.offcanvas.show .offcanvas-title {
  color:white;
}
/* HEADING */
.dance-heading {
  padding-top: 100px;
}
.dance-heading-line {
  color: goldenrod;
  font-family: "Niconne", cursive;
  font-weight: 500;
  /* Better mobile/Playbook font size */
  font-size: clamp(1.8rem, 6vw, 2.5rem); 
  text-align: center;
}
.dance-heading-main {
  background: linear-gradient(
    135deg,
    #0b2a5b 10%,
    #f7e7a8 30%,
    #d4af37 45%,
    #fff1b8 55%,
    #b8962e 65%,
    #0b2a5b 90%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 2.8rem);
  text-align: center;
  letter-spacing: 0.8px;
  text-transform: capitalize;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* MAIN CONTAINER */
.main-container {
  position: relative;
  text-align: center;
  padding: 20px 10px;
  perspective: 1000px;
}

/* MAIN IMAGE */
#mainImage {
  width: 100%;
  height: 420px;
  object-fit: contain;

  position: relative;
  z-index: 1;

  transform-style: preserve-3d;
  backface-visibility: hidden;

  transition: transform 0.25s ease, opacity 0.2s ease, filter 0.2s ease;

  /* dynamic gold border (responsive feel) */
  border-radius: 10px;
  box-shadow:
  0 0 0 clamp(2px, 0.4vw, 6px)#0b2a5b,
  0 0 15px rgba(13, 110, 253, 0.4),
  0 20px 30px rgba(0,0,0,0.15);
}

#mainImage:hover {
  transform: scale(1.02);
}

/* ARROWS (FIXED CLICK ISSUE) */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #444;
  padding: 6px 10px;
  transition: 0.2s ease;

  z-index: 20; /* FIX */
}

.arrow:hover {
  color: #000;
  transform: translateY(-50%) scale(1.2);
}

.arrow-left { left: 5px; }
.arrow-right { right: 5px; }

/* THUMBNAILS */
.thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 15px;
  padding: 5px 0;
  justify-content: center;
}

.thumbs img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.thumbs img:hover {
  transform: scale(1.05);
  border: 2px solid #d4af37;
}

.thumbs img.active {
  border: 2px solid #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transform: scale(1.08);
}

/* 3D FLIP (FAST + DEPTH) */
.flip-out-left {
  transform: rotateY(-70deg) scale(0.96) rotateX(3deg);
  opacity: 0.4;
  filter: brightness(0.6) drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.flip-out-right {
  transform: rotateY(70deg) scale(0.96) rotateX(-3deg);
  opacity: 0.4;
  filter: brightness(0.6) drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.flip-in-left {
  transform: rotateY(70deg) scale(0.96) rotateX(-3deg);
  opacity: 0.4;
}

.flip-in-right {
  transform: rotateY(-70deg) scale(0.96) rotateX(3deg);
  opacity: 0.4;
}

/* MOBILE */
@media (max-width: 576px) {
  #mainImage {
    height: 260px;
  }

  .thumbs img {
    width: 60px;
    height: 60px;
  }
}
/* APPLY ONLY ON NORMAL SCREENS (NOT MOBILE) */
@media (min-width: 768px) {
  .main-container {
    max-width: 850px;   /* control width */
    margin: 0 auto;     /* center */
  }
}
